3f754fa894d26f2d3f12a859c10c89af8fefd496,tests/it.xsemantics.dsl.tests/expectations/fj_first_test/it/xsemantics/test/fj/first/FjFirstTypeSystem.java,FjFirstTypeSystem,applyRuleBasicEquals,#RuleEnvironment#RuleApplicationTrace#BasicType#BasicType#,1164
Before Change
}
protected Result<Boolean> applyRuleBasicEquals(final RuleEnvironment G, final RuleApplicationTrace _trace_, final BasicType left, final BasicType right) throws RuleFailedException {
String _basic = left.getBasic();
String _basic_1 = right.getBasic();
/* left.basic.equals(right.basic) */
if (!_basic.equals(_basic_1)) {
sneakyThrowRuleFailedException("left.basic.equals(right.basic)");
}
return new Result<Boolean>(true);
After Change
protected Result<Boolean> applyRuleBasicEquals(final RuleEnvironment G, final RuleApplicationTrace _trace_, final BasicType left, final BasicType right) throws RuleFailedException {
/* left.basic.equals(right.basic) */
if (!left.getBasic().equals(right.getBasic())) {
sneakyThrowRuleFailedException("left.basic.equals(right.basic)");
}
return new Result<Boolean>(true);